{% extends 'base_dashboard.html' %} {% block title %}{{ action }} — {{ site_settings.institute_name }}{% endblock %} {% block content %}

{{ action }}

Update role and account details for @{{ user_obj.username }}

Back to Users
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.full_name }} {% if form.full_name.errors %}
{{ form.full_name.errors.0 }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{{ form.role }}
Changing role updates what this user can access immediately.
{% if form.role.errors %}
{{ form.role.errors.0 }}
{% endif %}
{{ form.phone_number }}
{{ form.is_active }}
Set password Cancel
{% endblock %}